home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_02_08
/
2n08072b
< prev
next >
Wrap
Text File
|
1991-06-29
|
610b
|
25 lines
Listing 2: Port I/O Function Macros
#if defined(__TURBOC__)
#include "dos.h"
#define IN_PORT(port) inportb(port)
#define IN_PORTW(port) inport(port)
#define OUT_PORT(port,val) outportb(port,val)
#define OUT_PORTW(port,val) outport(port,val)
#else
#include "conio.h"
#define IN_PORT(port) inp(port)
#define IN_PORTW(port) inpw(port)
#define OUT_PORT(port,val) outp(port,val)
#define OUT_PORTW(port,val) outpw(port,val)
#endif